public Settings(SharedPreferences preferences) {
super(preferences);
this.setHost(preferences);
this.setPort(preferences);
}
public Settings(SharedPreferences preferences) {
super(preferences);
this.host = this.setHost(preferences);
this.port = this.setPort(preferences);
this.sensitivity = this.setSensitivity(preferences);
}